Courses / CSS Mastery / Animations
Animations
@keyframes bilan harakat berish.
Kichik va silliq animatsiya yaxshi ko‘rinadi.
Misol
.dot {
animation: pulse 1.4s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
← Positioning
Variable & Themes →